module Base
{


    /************Recipes************/

	recipe Unpack Pack of Yeast
	{
	   BigYeast=1,

	   Result:Yeast=5,
	   Time:10.0,
	   Category:Cooking,
	   Sound:PutItemInBag,
	}

	recipe Unpack Box of Lids
	{
	   BigJarLid=1,

	   Result:JarLid=10,
	   Time:10.0,
	   Category:Cooking,
	   Sound:PutItemInBag,
	}

	recipe Unpack Box of Vinegars
	{
	   Big_BoxofVinegars=1,

	   Result:Vinegar=6,
	   Time:10.0,
	   Category:Cooking,
	   Sound:PutItemInBag,
	}

	recipe Unpack Box of Rice Vinegars
	{
	   Big_BoxofRiceVinegars=1,

	   Result:RiceVinegar=6,
	   Time:10.0,
	   Category:Cooking,
	   Sound:PutItemInBag,
	}

	recipe Unpack Box of Olive Oils
	{
	   Big_BoxofOilOlives=1,

	   Result:OilOlive=4,
	   Time:10.0,
	   Category:Cooking,
	   Sound:PutItemInBag,
	}

	recipe Unpack Box of Vegetable Oils
	{
	   Big_BoxofVegetableoils=1,

	   Result:OilVegetable=4,
	   Time:10.0,
	   Category:Cooking,
	   Sound:PutItemInBag,
	}

    recipe Make Pie Dough
    {
	   keep Spatula/[Recipe.GetItemTypes.Spoon]/[Recipe.GetItemTypes.Fork],
	   keep Bowl,
       Water=2,
       [Recipe.GetItemTypes.Flour]=2,
       Butter/Lard/Margarine;15,
       Salt/BigSalt/BigSalt2;2,

       Result:PieDough,
       NeedToBeLearn:true,
       Time:50.0,
       Category:Cooking,
       OnGiveXP:Recipe.OnGiveXP.Cooking10,
    }

    recipe Make Pizza
    {
	   keep Spatula/[Recipe.GetItemTypes.Spoon]/[Recipe.GetItemTypes.Fork],
	   keep Bowl,
       keep RollingPin,
       Water=3,
       [Recipe.GetItemTypes.Flour]=2,
       BigSalt/BigSalt2;2,
       Yeast,
	   [Recipe.GetItemTypes.Oil];3,
	   Cheese;15,
	   [Recipe.GetItemTypes.PizzaSauce];15,

       Result:PizzaRecipe,
       NeedToBeLearn:true,
       Time:50.0,
       Category:Cooking,
       OnGiveXP:Recipe.OnGiveXP.Cooking10,
    }

    recipe Make Bread Dough
    {
	   keep Spatula/[Recipe.GetItemTypes.Spoon]/[Recipe.GetItemTypes.Fork],
	   keep Bowl,
       keep RollingPin,
       Water=1,
       [Recipe.GetItemTypes.Flour]=1,
       BigSalt/BigSalt2;1,
       Yeast,

       Result:BreadDough,
       NeedToBeLearn:true,
       Time:50.0,
       Category:Cooking,
       OnGiveXP:Recipe.OnGiveXP.Cooking10,
    }

    recipe Make Bread Dough
    {
	   keep Spatula/[Recipe.GetItemTypes.Spoon]/[Recipe.GetItemTypes.Fork],
	   keep Bowl,
       keep RollingPin,
       Water=1,
       Flour=1,
       BigSalt/BigSalt2;1,
       Yeast,

       Result:BaguetteDough,
       NeedToBeLearn:true,
       Time:50.0,
       Category:Cooking,
       OnGiveXP:Recipe.OnGiveXP.Cooking10,
    }
	
    recipe Make Biscuits
    {
       destroy MuffinTray,
	   keep Spatula/[Recipe.GetItemTypes.Spoon]/[Recipe.GetItemTypes.Fork],
	   keep Bowl,
       Water=1,
       Flour=1,
       BigSalt/BigSalt2;1,
       BakingSoda=1,
	   [Recipe.GetItemTypes.BakingFat];1,

       Result: Muffintray_Biscuit,
       NeedToBeLearn:true,
       Category:Cooking,
       Time:50,
    }
	
}